home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / cbox23.zip / SYSPAGE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-04  |  682b  |  81 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     STRING001 = PPEPath()
  25.     WrUSys
  26.     Shell 0, INTEGER001, STRING001 + "CHATBOX.EXE", "CHATBOX.CNF /PPE"
  27.     RdUSys
  28.     If (INTEGER001 == 89) Then
  29.         KbdStuff "C" + Chr(13)
  30.     Endif
  31.     Cls
  32.     End
  33.  
  34. ;------------------------------------------------------------------------------
  35. ;
  36. ; Usage report (before postprocessing)
  37. ;
  38. ; ■ Statements used :
  39. ;
  40. ;    1       End
  41. ;    1       Cls
  42. ;    1       Goto 
  43. ;    1       Let 
  44. ;    1       If 
  45. ;    1       Shell 
  46. ;    1       KbdStuff 
  47. ;    1       WrUSys
  48. ;    1       RdUSys
  49. ;
  50. ;
  51. ; ■ Functions used :
  52. ;
  53. ;    2       +
  54. ;    1       ==
  55. ;    1       !
  56. ;    1       Chr()
  57. ;    1       PPEPath()
  58. ;
  59. ;------------------------------------------------------------------------------
  60. ;
  61. ; Analysis flags : S
  62. ;
  63. ; S - Shell to DOS ■ 5
  64. ;     This may be normal if the PPE need to execute an external command,
  65. ;     but may be actually anything... nasty (formating HD, rebooting,...)
  66. ;     or usefull (sorting, maintenance,...). Check!
  67. ;     ■ Search for : SHELL
  68. ;
  69. ;------------------------------------------------------------------------------
  70. ;
  71. ; Postprocessing report
  72. ;
  73. ;    0       For/Next
  74. ;    0       While/EndWhile
  75. ;    1       If/Then or If/Then/Else
  76. ;    0       Select Case
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;                 AEGiS Corp - Break the routines, code against the machines!
  80. ;------------------------------------------------------------------------------
  81.